home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / temacd / rapidphp / rapidphp7.exe / {app} / data / regexpr.dat < prev   
Text File  |  2005-10-05  |  455b  |  17 lines

  1. . Any single character=.
  2. * Zero or more=*
  3. + One or more=+
  4. ^ Beginning of line=^
  5. $ End of line=$
  6. [] Any one character in the set=[]
  7. [^] Any one character not in the set=[^]
  8. \ Escape special character=\
  9. -
  10. HEX color=#[0-9a-fA-F]*
  11. RGB color=[Rr][Gg][Bb]\([^)]*\)
  12. Number=[\-\+]*[\.]*[0-9]+[\.]*[0-9]*
  13. Double quoted string="[^"]*"
  14. Single quoted string='[^']*'
  15. HTML image tag=<img[^>]+>
  16. HTML hyperlink=<a[^>]+>.+</a>
  17. HTML comment=<!--[^(-->)]*-->